@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap');

.container {
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
.text {
    color: #1b1b1b;
    font-family: 'Roboto', sans-serif; 
    font-weight: bold; 
    font-size: 30pt;
    margin-left: 10%;
    margin-right: 10%;
}

.helper {
    color: #1b1b1b;
    font-family: 'Roboto', sans-serif; 
    font-weight: normal;
    font-size: 20pt;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 0;
    opacity: 75;
}
  
.btn {
    color: #131313;
    font-family: 'Roboto', sans-serif;
    font-size: 3vh;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    display: inline-flex;
    padding: 3vh 4vh;
    align-items: center;
    gap: 1vh;
    justify-content: center;
    border-radius: 0.6vh;
    border: 0.6vh;
    background: #FCC000;
    box-shadow: 1vh 1vh 0px 0px #D7A300;
    transition: 0.05s;

}

.btn:hover {
    cursor: pointer;
}

.btn:active {
    background-color: #FCC000;
    box-shadow: 0px 0px 0px 0px #D7A300;
    transform: translateY(1vh);
    transition: 0.05s;
} 

body {
    background-color: #F5F5F5;
}

header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #131313;
}

header button{
    color: #131313;
    text-align: center;
    font-family: "ABeeZee", sans-serif;
    font-size: 2.5vh;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: #F5F5F5;

    display: flex;
    padding: 1.5vh 3vh;
    justify-content: center;
    align-items: center;
    gap: 1vh;

    border-radius: 0.6vh;
    border: 0.1vh solid #131313;
    box-shadow: 0.3vh 0.3vh #F5F5F5, 0.4vh 0.4vh 0px 0px #131313;
    margin: 3vh;
}

header button:hover {
    cursor: pointer;
}

header button:active {
    background-color: #F5F5F5;
    box-shadow: 0px 0px 0px 0px #F5F5F5;
    transform: translateY(0.95vh);
    transition: 0.05s;
}

footer a {
    display: block;
    text-decoration: none;
    color: black;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    font-family: 'Roboto', sans-serif; 
    font-weight: bold; 
    font-size: 12pt;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 10vh;
}

h1, h2 {
    color: #1b1b1b;
    font-family: 'Roboto', sans-serif;
    margin-left: 3vh;
}

p {
    display: block;
    color: #1b1b1b;
    font-family: 'Roboto', sans-serif; 
    font-size: 12pt;
    margin-left: 3vh;
    margin-right: 3vh;
}

.insider {
    text-decoration: none;
    color: #1b1b1b;
    text-decoration: underline;
}

img {
    width: 5vh;
    height: auto;
    animation: zoomIn 1s;
}

@keyframes zoomIn{
    0%{
        transform: scale(25%);
    }
}